GetInput
GetInput()
  This function lets you capture keyboard input. This function will read all keyboard presses until return is pressed. Then the function returns what was typed on the keyboard.
 
  Example:
 

function main()
{
     Echo("Please enter your name: ");
     var Name = GetInput();
     Echo("Hello: " + Name);
     Pause();
}